home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / bit / Bit_AnySet.c < prev    next >
C/C++ Source or Header  |  1990-08-26  |  2KB  |  64 lines

  1. /* 
  2.  * Bit_FindFirstClear.c --
  3.  *
  4.  *    Source code for the Bit_FindFirstClear library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/bit/RCS/Bit_AnySet.c,v 1.1 88/06/19 14:34:46 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <sprite.h>
  21. #include "bit.h"
  22. #include "bitInt.h"
  23.  
  24.  
  25. /*-
  26.  *-----------------------------------------------------------------------
  27.  *
  28.  * Bit_AnySet --
  29.  *
  30.  *    See if any bit in the mask is set
  31.  *
  32.  * Results:
  33.  *    TRUE if one or more bit(s) is(are) set.
  34.  *
  35.  * Side Effects:
  36.  *    None.
  37.  *
  38.  *-----------------------------------------------------------------------
  39.  */
  40.  
  41. Boolean
  42. Bit_AnySet(numBits, maskPtr)
  43.     int              numBits;      /* Number of bits in array */
  44.     register int  *maskPtr;     /* The array of bits */
  45. {
  46.     register int  i;
  47.     register int  lastMask;
  48.  
  49.     GET_MASK_AND_INTS(numBits, i, lastMask);
  50.  
  51.     while (i != 0) {
  52.     if (*maskPtr) {
  53.         return (TRUE);
  54.     }
  55.     i--; maskPtr++;
  56.     }
  57.  
  58.     if (lastMask && (*maskPtr & lastMask)) {
  59.     return (TRUE);
  60.     } else {
  61.     return (FALSE);
  62.     }
  63. }
  64.